home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP Eylül 1998.iso / Slackwar / docs / ELF-HOWTO < prev    next >
Text File  |  1996-08-02  |  54KB  |  1,187 lines

  1.   The Linux ELF HOWTO
  2.   Daniel Barlow <daniel.barlow@linux.org>
  3.   v1.29, 14 July 1996
  4.  
  5.   This document describes how to migrate your Linux system to compile
  6.   and run programs in the ELF binary format.  It falls into three con¡
  7.   ceptual parts: (1) What ELF is, and why you should upgrade, (2) How to
  8.   upgrade to ELF-capability, and (3) what you can do then.  After a
  9.   fairly long fallow period in which I have been pretending to do aca¡
  10.   demic work, it has recently been overhauled to give current informa¡
  11.   tion for Linux 2.0.
  12.  
  13.   1.  What is ELF?  An introduction
  14.  
  15.   ELF (Executable and Linking Format) is a binary format originally
  16.   developed by USL (UNIX System Laboratories) and currently used in
  17.   Solaris and System V Release 4.  Because of its increased flexibility
  18.   over the older a.out format that Linux previously used, the GCC and C
  19.   library developers decided last year to move to using ELF as the Linux
  20.   standard binary format also.
  21.  
  22.   This `increased flexibility' manifests as essentially two benefits to
  23.   the average applications progammer:
  24.  
  25.   ╖  It is much simpler to make shared libraries with ELF.  Typically,
  26.      just compile all the object files with -fPIC, then link with a
  27.      command like
  28.  
  29.         gcc -shared -Wl,-soname,libfoo.so.y -o libfoo.so.y.x *.o
  30.  
  31.   If that looks complex, you obviously haven't ever read up on the
  32.   equivalent procedure for a.out shared libraries, which involves com¡
  33.   piling the library twice, reserving space for all the data you think
  34.   that the library is likely to require in future, and registering that
  35.   address space with a third party (it's described in a document over 20
  36.   pages long --- look at
  37.   <ftp://tsx-11.mit.edu/pub/linux/packages/GCC/src/tools-2.17.tar.gz>
  38.   for details).
  39.  
  40.   ╖  It makes dynamic loading (ie programs which can load modules at
  41.      runtime) much simpler.  This is used by Perl 5, Python, and Java,
  42.      among other things (it's a kicker for many kinds of interpreters).
  43.      Other suggestions for dynamic loading have included super-fast
  44.      MUDs, where extra code could be compiled and linked into the
  45.      running executable without having to stop and restart the program.
  46.  
  47.   Against this it must be weighed that ELF is possibly a bit slower.
  48.   The figures that get bandied around are between 1% and 5%, though all
  49.   the actual tests that have been conducted so far indicate that the
  50.   difference is small enough to get lost in the noise of other events
  51.   happening at the same time.  If you have TeX or a Postscript
  52.   viewer/printer, you can read speed.comp-1.0.tar.gz, which is available
  53.   from SunSite somewhere.
  54.  
  55.   The slowdown comes from the fact that ELF library code must be
  56.   position independent (this is what the -fPIC above stands for) and so
  57.   a register must be devoted to holding offsets.  That's one less for
  58.   holding variables in, and the 80x86 has a paucity of general-purpose
  59.   registers anyway.  Note that the speed difference only applies to code
  60.   that is part of shared libraries.  For applications or kernels there
  61.   is no speed difference between a.out and ELF.
  62.  
  63.   1.1.  What ELF isn't
  64.  
  65.   There are a number of common misconceptions about what ELF will do for
  66.   your system:
  67.  
  68.      It's not a way to run SVR4 or Solaris programs
  69.         Although it's the same binary `container' as SVR4 systems use,
  70.         that doesn't mean that SVR4 programs suddenly become runnable on
  71.         Linux.  It's analogous to a disk format --- you can keep Linux
  72.         programs on MSDOS or Minix-format disks, and vice versa, but
  73.         that doesn't mean that these systems become able to run each
  74.         others' programs.
  75.  
  76.         It may be possible to run an application for another x86 Unix
  77.         under Linux (it depends on the application), but following the
  78.         instructions in this HOWTO will not have that effect.  Start by
  79.         looking at the iBCS kernel module (somewhere on tsx-11.mit.edu)
  80.         and see if it fits your needs.
  81.  
  82.      It's not intrinsically smaller or faster
  83.         You may well end up with smaller binaries anyway, though, as you
  84.         can more easily create shared libraries of common code between
  85.         many programs.  In general, if you use the same compiler options
  86.         and your binaries come out smaller than they did with a.out,
  87.         it's more likely to be fluke or a different compiler version.
  88.         As for `faster', I'd be surprised.  Speed increases could turn
  89.         up if your binaries are smaller, due to less swapping or larger
  90.         functional areas fitting in cache.
  91.  
  92.      It doesn't require that you replace every binary on your system
  93.         At the end of this procedure you have a system capable of
  94.         compiling and running both ELF and a.out programs.  New programs
  95.         will by default be compiled in ELF, though this can be
  96.         overridden with a command-line switch.  There is admittedly a
  97.         memory penalty for running a mixed ELF/a.out system --- if you
  98.         have both breeds of program running at once you also have two
  99.         copies of the C library in core, and so on.  I've had reports
  100.         that the speed difference from this is undetectable in normal
  101.         use on a 6Mb system though (I certainly haven't noticed much in
  102.         8Mb), so it's hardly pressing.  You lose far more memory every
  103.         day by running bloated programs like Emacs and static
  104.         Mosaic/Netscape binaries :-)
  105.  
  106.      It's nothing to do with Tolkien.
  107.         Or at least, not in this context.
  108.  
  109.   1.2.  Why you should convert to ELF
  110.  
  111.   There are essentially two reasons to upgrade your system to compile
  112.   and run ELF programs: the first is the increased flexibility in
  113.   programming referred to above, and the second is that, due to the
  114.   first, everyone else will (or has already).  Current releases of the C
  115.   library and GCC are compiled only for ELF, and other developers are
  116.   moving ELFwards too.
  117.  
  118.   Many people are concerned about stability (justifiably so, even if
  119.   it's not so much fun).  ELF on Linux has existed since August 1994 and
  120.   has been publically available since May or June 1995; the teething
  121.   troubles are probably out of the way by now.  You should allow for the
  122.   possibility of breaking things --- as you would with any major upgrade
  123.   --- but the technology that you're upgrading to is no longer bleeding
  124.   edge.  For a system on which any development is done, or on which you
  125.   want to run other people's precompiled binaries, ELF is pretty much a
  126.   necessity these days.  Plan to switch to it when you upgrade to
  127.   version 2.0 of the kernel.
  128.  
  129.   1.3.  How to convert to ELF
  130.  
  131.   When this HOWTO was first written, there was only one way, and it was
  132.   the way described here.  These days there are high-quality upgradable
  133.   distributions available --- unless you have invested significant time
  134.   in setting up your machine exactly how you like it, you might find
  135.   that a backup of all your own data and a reinstall from a recent Red
  136.   Hat or Debian release is more convenient than messing about with the
  137.   assorted libraries and compilers described here.
  138.  
  139.   I must stress this.  The installation described here is a fairly small
  140.   job in itself (it can be completed in well under an hour, excepting
  141.   the time taken to download the new software), but there are a
  142.   multitude of errors that you can make which will probably leave you
  143.   with an unbootable system.  If you are not comfortable with upgrading
  144.   shared libraries, if the commands ldconfig and  ldd mean nothing to
  145.   you, or if you're unhappy about building packages from source code,
  146.   you should consider the `easy option'.  Even if this description isn't
  147.   you, think about it anyway --- if you want a `fully ELF' system,
  148.   somebody is going to have to recompile all the binaries on it.
  149.  
  150.   Still with us?
  151.  
  152.   2.  Installation
  153.  
  154.   2.1.  Background
  155.  
  156.   The aim of this conversion is to leave you with a system which can
  157.   build and run both a.out and ELF programs, with each type of program
  158.   being able to find its appropriate breed of shared libraries.  This
  159.   obviously requires a bit more intelligence in the library search
  160.   routines than the simple `look in /lib, /usr/lib and anywhere else
  161.   that the program was compiled to search' strategy that some other
  162.   systems can get away with.
  163.  
  164.   This intelligence is centralised in a dynamic loader, which exists in
  165.   only one --- or two --- places on the system.  For a.out programs,
  166.   it's called /lib/ld.so, and for ELF programs it's /lib/ld-linux.so.1.
  167.   The compiler and linker do not encode absolute library pathnames into
  168.   the programs they output; instead they put the library name and the
  169.   absolute path to the appropriate dynamic loader in, and leave that to
  170.   match the library name to the appropriate place at runtime.  This has
  171.   one very important effect --- it means that the libraries that a
  172.   program uses can be moved to other directories  without recompiling
  173.   the program, provided that ld.so (ld-linux.so.1; whatever) is told to
  174.   search the new directory.  This is essential functionality for the
  175.   directory swapping operation that follows.
  176.  
  177.   The corollary of the above, of course, is that any attempt to delete
  178.   or move ld.so or ld-linux.so.1 may cause every dynamically linked
  179.   program on the system to stop working.  This is generally regarded as
  180.   a Bad Thing.
  181.  
  182.   The basic plan, then, is that ELF development things (compilers,
  183.   include files and libraries) go into /usr/{bin,lib,include} where your
  184.   a.out ones currently are, and the a.out things will be moved into
  185.   /usr/i486-linuxaout/{bin, lib, include}.  /etc/ld.so.conf lists all
  186.   the places on the system where libraries are expected to be found, and
  187.   ldconfig is intelligent enough to distinguish between ELF and a.out
  188.   variants.
  189.  
  190.   There are a couple of exceptions to the library placement:
  191.  
  192.   ╖  Some old programs were built without the use of ld.so.  These would
  193.      all cease working if their libraries were moved from under them.
  194.      Thus, libc.so* and libm.so* must stay where they are in /lib, and
  195.      the ELF versions have had their major numbers upgraded so that they
  196.      do not overwrite the a.out ones.  Old X libraries (prior to version
  197.      6) are best left where they are also, although newer ones
  198.      (libX*so.6) must be moved.  Moving the old ones will apparently
  199.      break xview programs, and not moving the new ones will cause them
  200.      to be overwritten when you install ELF X libraries.
  201.  
  202.      If you have non-ld.so programs that require libraries other than
  203.      the above (if you know which programs they are, you can run ldd on
  204.      them to find out which libraries they need before breaking them)
  205.      you have essentially two options.  One, you can extract the ELF
  206.      library tar files into a temporary directory, check whether your
  207.      precious library would be overwritten, and if so, move the ELF
  208.      version of the library into, say, /usr/i486-linux/lib instead of
  209.      /lib.  Make sure your ld.so.conf has /usr/i486-linux/lib in it,
  210.      then run ldconfig and think no more on't.  Two, you can recompile
  211.      or acquire a newer copy of the offending program.  This might not
  212.      be a bad idea, if possible.
  213.  
  214.   ╖  If you have /usr and / on different partitions, any libraries that
  215.      you move from /lib must end up somewhere else on the root disk, not
  216.      on /usr.  I used /lib-aout in the instructions that follow.
  217.  
  218.   2.2.  Before you start --- Notes and Caveats
  219.  
  220.   ╖  You will need to be running a post-1.1.52 kernel with ELF binary
  221.      format support.  1.2.13 works.  2.0.0 (the most recent at the time
  222.      of writing) also works, as do most of the 1.3 series, though the
  223.      point of running old `experimental' kernels is anyway questionable
  224.      now that 2.0 is here.
  225.  
  226.   ╖  You are recommended to prepare or acquire a linux boot/root disk,
  227.      such as a Slackware rescue disk.  You probably won't need it, but
  228.      if you do and you don't have one, you'll kick yourself.  In a
  229.      similar `prevention is better than cure' vein, statically linked
  230.      copies of mv, ln, and maybe other file manipulation commands
  231.      (though in fact I think you can do everything else you actually
  232.      need to with shell builtins) may help you out of any awkward
  233.      situations you could end up in.
  234.  
  235.   ╖  If you were following the early ELF development, or you installed
  236.      certain versions of Slackware (none of the current ones,
  237.      admittedly) you may have ELF libraries in /lib/elf (usually
  238.      libc.so.4 and co).  Applications that you built using these should
  239.      be rebuilt, then the directory removed.  There is no need for a
  240.      /lib/elf directory!
  241.  
  242.   ╖  Most Linux installations these days have converged on the `FSSTND'
  243.      standard file system, but doubtless there are still installed
  244.      systems that haven't.  If you see references to /sbin/something and
  245.      you don't have a /sbin directory, you'll probably find the program
  246.      referred to in /bin or /etc/.  It is especially important to check
  247.      this when you install new programs; if you have /etc nearer the
  248.      front of the search path than /sbin you'll get odd failures due to
  249.      running the old versions when you weren't expecting to.
  250.  
  251.   ╖  It's a good idea to pick a time when nobody else is using the
  252.      computer, or to take it single-user.  It might be a good idea to
  253.      reboot it off a floppy so that a mistake doesn't leave you stuck,
  254.      but personally I like to leave a small element of fun ...
  255.  
  256.   2.3.  Ingredients
  257.  
  258.   Anything in the following list that I describe as being ``on tsx-11''
  259.   can be found in  <ftp://tsx-11.mit.edu/pub/linux/packages/GCC/>,
  260.   <ftp://sunsite.unc.edu/pub/Linux/GCC/>, and at many mirrors.  Please
  261.   take the time to look up your nearest mirror site and use that instead
  262.   of the master sites where possible.  It's faster for both you and
  263.   everyone else.
  264.  
  265.   These packages (either the listed version or a later one) are
  266.   required.  Also download and read through the release notes for each
  267.   of them: these are the files named release.packagename.  This applies
  268.   especially if you get newer versions than are listed here, as
  269.   procedures may have changed.
  270.  
  271.   Even if you habitually compile things from source, I'd advise you to
  272.   go for the binary versions where I've indicated, unless you really
  273.   have no use for your hair.  Most of them are not set up for
  274.   `crosscompiling' on an a.out-based system, and you are probably lining
  275.   yourself up for major grief if you try.
  276.  
  277.   2.3.1.  Absolute essentials
  278.  
  279.   ╖  ld.so-1.7.14.tar.gz --- the new dynamic linker.  Contains both
  280.      source and binaries.  Note that forthcoming versions of this will
  281.      require kernel ELF support even for a.out binaries; if you get
  282.      1.8.1 or later instead of the version listed, make sure that the
  283.      kernel you're running was compiled with ELF support before you
  284.      install this.
  285.  
  286.   ╖  libc-5.3.12.bin.tar.gz --- the ELF shared images for the C and
  287.      maths libraries, plus the corresponding static libraries and the
  288.      include files needed to compile programs with them.  Source is also
  289.      available if you like it, but it takes ages to compile, and
  290.      probably won't at all unless you already have an ELF system.
  291.  
  292.   ╖  gcc-2.7.2.bin.tar.gz --- the ELF C compiler package, which also
  293.      includes an a.out C compiler which understands the new directory
  294.      layout.  If you want to build gcc yourself (which you'll probably
  295.      find is simpler when you're already running ELF), you're
  296.      recommended to apply gcc-2.7.2-linux.diff.gz to the GNU sources
  297.      first.
  298.  
  299.   ╖  binutils-2.6.0.12.bin.tar.gz --- the GNU binary utilities patched
  300.      for Linux.  These are programs such as gas, ld, strings and so on,
  301.      most of which are required to make the C compiler go.  Note that
  302.      the vanilla GNU binutils (e.g. from prep.ai.mit.edu) are not an
  303.      acceptable substitute; if you really want to compile this yourself
  304.      you'll need to use the patched-for-Linux binutils-2.6.0.12.tar.gz
  305.      package instead of the GNU one.
  306.  
  307.   ╖  ncurses-1.9.9e.tar.gz --- this is an SVR4-compatible curses
  308.      library, which is henceforward deemed to be the `standard curses
  309.      library' for Linux.  The source is available from GNU sites such as
  310.      <ftp://prep.ai.mit.edu/gnu/> and also from
  311.      <ftp://ftp.netcom.com/pub/zm/zmbenhal>, and there is a binary
  312.      package on tsx-11.  By the time you get to install this you will
  313.      have a fully functional ELF development system, so I recommend the
  314.      source package if you have any kind of compilation horsepower.
  315.      That may just be me, though.
  316.  
  317.   ╖  gdbm-1.7.3.tar.gz is a set of database routines that use extensible
  318.      hashing and work similarly to the standard UNIX dbm and ndbm
  319.      routines.  The source is available from GNU sites such as
  320.      <ftp://prep.ai.mit.edu/gnu/>; you also need a patch
  321.      <ftp://ftp.uk.linux.org/pub/Linux/libc/non-core/gdbm.patch> to make
  322.      shared libraries out of it.  That patch also fixes a couple of
  323.      other things (a one-character typo in the Makefile and a
  324.      predisposition to use the wrong kind of file locking).
  325.  
  326.   2.3.2.  Others
  327.  
  328.   These are other libraries and files which aren't strictly essential,
  329.   but that you might want to get anyway.  This list contains only
  330.   packages that need to be upgraded to work in an ELF-useful fashion.
  331.   Later in this document is another list of programs which will continue
  332.   to work but which you'll have to tweak/upgrade if you want to
  333.   recompile them in ELF.  If your net access involves high-latency links
  334.   (like, say, a five-minute walk with a box of floppy disks), skip
  335.   forwards and check that one too before you set out :-)
  336.  
  337.   ╖  The a.out compatibility library package, libc.so-4.7.6.  This is
  338.      listed as `optional' because your existing a.out libraries of
  339.      whatever vintage will continue to work fine with your existing
  340.      binaries.  You might find that you need this if you plan to
  341.      continue developing in a.out for whatever reason.
  342.  
  343.   ╖  BSD curses.  If you find binaries which require libcurses.so.1,
  344.      this is the old BSD curses library.  They're probably quite rare,
  345.      which is fortunate as I can't presently find a (source code) copy
  346.      of the library.  It's probably best to recompile programs like this
  347.      to use ncurses; if this is not an option, there is a binary
  348.      libcurses.so in the libc-5.0.9.bin.tar.gz on tsx-11 mirrors.
  349.  
  350.   ╖  Berkeley db: the new 4.4BSD libdb database routines.  The source
  351.      can be had from
  352.      <ftp://ftp.cs.berkeley.edu/ucb/4bsd/db.1.85.tar.gz/>, and the patch
  353.      for Linux shared libraries is
  354.      <ftp://ftp.uk.linux.org/pub/Linux/libc/non-core/db.patch>
  355.  
  356.   ╖  C++ stuff. The gcc package comes with g++, but you'll also need
  357.      libg++-2.7.1.4.bin.tar.gz to compile any useful C++ software.  I
  358.      don't use C++ myself, but I understand that it is nontrivial to
  359.      build this from source, hence the binary recommendation.
  360.  
  361.   ╖  GNU-compatible termcap.  The conversion to ncurses din't happen
  362.      simultaneously with the move to ELF --- you might find that you
  363.      want to run other people's programs that were built using this
  364.      library, and for some applications you might wish to continue using
  365.      it.  gdb is a legitimate example.  If you intend to debug shared
  366.      libraries and you think that gdb is getting confused about the ones
  367.      that it's linked with itself, you probably want a statically linked
  368.      copy of it; in this case, you'll find that a real termcap is a lot
  369.      smaller than the termcap-compatible routines in ncurses.
  370.  
  371.      termcap-2.0.8.tar.gz is available from tsx-11.  This is not GNU
  372.      Termcap, but it is completely compatible (the differences are in
  373.      the error checking, apparently).  This is a source code package.
  374.  
  375.   ╖  MAKEDEV.  In some incarnations, this utility removes existing
  376.      entries for devices before recreating them.  This is Bad News if it
  377.      removes /dev/zero, which causes some versions of ld-linux.so.1 to
  378.      break.  Find a new version at
  379.      <ftp://sunsite.unc.edu/pub/Linux/system/Admin/MAKEDEV-C-1.5.tar.gz>
  380.      or
  381.      <ftp://sunsite.unc.edu/pub/Linux/system/Admin/MAKEDEV-2.2.tar.gz>.
  382.  
  383.   ╖  modules-2.0.0.  If you use modules, the upgrade to binutils which
  384.      you're shortly about to perform will break all versions of the
  385.      modules utilities older than 1.3.69.  New modules utilities can be
  386.      had from  <http://www.pi.se/blox/>.
  387.  
  388.   ╖  The X window system includes a lot of shared libraries.  As your
  389.      new programs will be ELF, and ELF programs cannot use a.out
  390.      libraries, you'll need a new X installation if you want to do any X
  391.      development.  XFree86 3.1.2 comes in both a.out and ELF formats.
  392.      ftp to ftp.xfree86.org, read the `too many users' message that you
  393.      are almost guaranteed to get, and pick the closest mirror site
  394.      network-wise to you.  Once you have the contents of the common and
  395.      elf directories, you must edit /usr/X11R6/lib/X11/config/linux.cf
  396.      to change the lines saying
  397.  
  398.        #define LinuxElfDefault         NO
  399.        #define UseElfFormat            NO
  400.  
  401.   to say YES instead.  Otherwise an xpm build will attempt to do odd
  402.   stuff with jumpas and its associated relics of the past.  Note that
  403.   XFree86 binaries currently require an ELF shared termcap library
  404.   (libtermcap.so.2) to be installed.
  405.  
  406.   If you use Motif, you may also need to contact your vendor, to inves¡
  407.   tigate whether they will supply ELF Motif libraries.  I don't use it;
  408.   I can't help here.
  409.  
  410.   ╖  If you're upgrading to Linux 2.0 at the same time as going ELF,
  411.      don't forget also to check the Documentation/Changes file that
  412.      comes in the kernel source, to find out what else you'll need.
  413.  
  414.   2.4.  Rearranging your filesystem
  415.  
  416.   Sooo...  Note that in all that follows, when I say `remove' I
  417.   naturally mean `backup then remove' :-).  Take a deep breath ...
  418.  
  419.   1.
  420.  
  421.       The essentials --- binary installation
  422.  
  423.   2. Make the new directories that you will move a.out things to
  424.  
  425.   mkdir -p /usr/i486-linuxaout/bin
  426.   mkdir -p /usr/i486-linuxaout/include
  427.   mkdir -p /usr/i486-linuxaout/lib
  428.   mkdir /lib-aout
  429.  
  430.   3. Untar the dynamic linker package ld.so-1.7.14 in the directory you
  431.      usually put source code, then read through the
  432.      ld.so-1.7.14/instldso.sh script just unpacked.  If you have a
  433.      really standard system, run it by doing sh instldso.sh, but if you
  434.      have anything at all unusual then do the install by hand instead.
  435.      `Anything at all unusual' includes
  436.  
  437.   ╖  using zsh as a shell (some versions of zsh define $VERSION, which
  438.      seems to confuse instldso.sh)
  439.  
  440.   ╖  having symlinks from /lib/elf to /lib (which you shouldn't need,
  441.      but that's scant consolation when you're looking for the rescue
  442.      disk)
  443.  
  444.   4. Edit /etc/ld.so.conf to add the new directory
  445.      /usr/i486-linuxaout/lib (and /lib-aout if you're going to need
  446.      one).  Then rerun /sbin/ldconfig -v to check that it is picking up
  447.      the new directories.
  448.  
  449.   5. Move all the a.out libraries in /usr/lib and /usr/*/lib to
  450.      /usr/i486-linuxaout/lib.  Note, I said `libraries' not
  451.      `everything'.  That's files matching the specification lib*.so* ,
  452.      lib*.sa*, or lib*.a.  Don't start moving /usr/lib/gcc-lib or
  453.      anything silly like that around.
  454.  
  455.   6. Now look at /lib.  Leave intact libc.so*, libm.so*, and libdl.so*.
  456.      If you have symlinks to X libraries (libX*.so.3*) leave them there
  457.      too --- XView and some other packages may require them.  Leave
  458.      ld.so*, ld-linux.so* and any other files starting with ld.  As for
  459.      the remaining libraries (if there are any others): if you have /usr
  460.      on the root partition, put them in /usr/i486-linuxaout/lib.  If you
  461.      have /usr mounted separately, put them in /lib-aout.  Now run
  462.      ldconfig -v
  463.  
  464.   7. Remove the directory /usr/lib/ldscripts if it's there, in
  465.      preparation for installing the binutils (which will recreate it)
  466.  
  467.   8. Remove any copies of ld and as (except for ld86 and as86) that you
  468.      can find in /usr/bin.
  469.  
  470.   9. You need to clean up your /usr/include hierarchy.  On an average
  471.      system, some of the files in here are `core' functionality and come
  472.      with libc, while others are from other packages that you or your
  473.      distribution builder have installed.  Given this mess, I suggest
  474.      you remake it from scratch; rename it to /usr/include.old, then
  475.      unpack libc-5.2.18.bin.tar.gz by untarring it from the root
  476.      directory.
  477.  
  478.   10.
  479.      Install the binutils package.  tar -xvzf
  480.      binutils-2.6.0.12.bin.tar.gz -C /  is one perfectly good way to do
  481.      this.
  482.  
  483.   11.
  484.      The gcc package expects to be untarred from root.  It installs some
  485.      files in /usr/bin and lots more in /usr/lib/gcc-
  486.      lib/i486-linux/2.7.2 and /usr/lib/gcc-lib/i486-linuxaout/2.7.2.
  487.      Use
  488.  
  489.        $ tar ztf gcc-2.7.2.bin.tar.gz
  490.  
  491.   to see what's in it, backup anything that it overwrites that you feel
  492.   you may want to keep (for example, if you have Gnu ADA installed you
  493.   will probably want to keep /usr/bin/gcc), then just do
  494.  
  495.        # tar -zxf gcc-2.7.2.bin.tar.gz -C /
  496.  
  497.   At this point, you should be able to run gcc -v and compile test pro¡
  498.   grams.  Try
  499.  
  500.        $ gcc -v
  501.        Reading specs from /usr/lib/gcc-lib/i486-linux/2.7.2/specs
  502.        gcc version 2.7.2
  503.        $ gcc -v -b i486-linuxaout
  504.        Reading specs from /usr/lib/gcc-lib/i486-linuxaout/2.7.2/specs
  505.        gcc version 2.7.2
  506.        $ ld -V
  507.        ld version 2.6 (with BFD 2.6.0.2)
  508.          Supported emulations:
  509.           elf_i386
  510.           i386linux
  511.           i386coff
  512.  
  513.   followed of course by the traditional ``Hello, world'' program.  Try
  514.   it with gcc and with gcc -b i486-linuxaout to check that both the
  515.   a.out and ELF compilers are set up correctly.
  516.  
  517.   Finished?  Not quite.  You still have all the `non-core' libraries to
  518.   install, and a fair amount of mucking about with symlinks.  Onwards...
  519.  
  520.    Symlinks
  521.  
  522.   12.
  523.      Some programs (notably various X programs) use /lib/cpp, which
  524.      under Linux is generally a link to /usr/lib/gcc-
  525.      lib/i486-linux/version/cpp.  As the preceding step probably wiped
  526.      out whatever version of cpp it was pointing to, you'll need to
  527.      recreate the link:
  528.  
  529.   # cd /lib
  530.   # ln -s /usr/lib/gcc-lib/i486-linux/2.7.2/cpp .
  531.  
  532.   13.
  533.      When you moved /usr/include to /usr/include.old, you lost the
  534.      symlinks into the kernel sources.  Run
  535.  
  536.        # cd /usr/include
  537.        # ln -s ../src/linux/include/linux .
  538.        # ln -s ../src/linux/include/asm .
  539.  
  540.   (assuming you have kernel source in /usr/src/linux; if not, season to
  541.   taste)
  542.  
  543.   14.
  544.      The FSSTND people have once again justified their keep by moving
  545.      the utmp and wtmp files from /var/adm to /var/run and /var/log
  546.      respectively.  You'll need to add some links dependent on where
  547.      they currently live, and you may need to make the /var/log and
  548.      /var/adm directories too.  I reproduce below the ls -l output of
  549.      appropriate bits on my system:
  550.  
  551.        $ ls -ld /var/adm /var/log /var/run /var/log/*tmp /var/run/*tmp
  552.        lrwxrwxrwx   1 root     root            3 May 24 05:53 /var/adm -> log/
  553.        drwxr-xr-x   9 root     root         1024 Aug 13 23:17 /var/log/
  554.        lrwxrwxrwx   1 root     root           11 Aug 13 23:17 /var/log/utmp -> ../run/utmp
  555.        -rw-r--r--   1 root     root       451472 Aug 13 23:00 /var/log/wtmp
  556.        drwxr-xr-x   2 root     root         1024 Aug 13 23:17 /var/run/
  557.        -rw-r--r--   1 root     root          448 Aug 13 23:00 /var/run/utmp
  558.  
  559.   Check the FSSTND (from LDP archives such as
  560.   <ftp://sunsite.unc.edu/pub/Linux/docs/fsstnd/>) for the full story.
  561.  
  562.   Rejoice!
  563.  
  564.   By this time you should have a (more or less) fully functioning ELF
  565.   development system.  Stand back and celebrate quietly for a few
  566.   minutes.
  567.  
  568.   Essential source code packages
  569.  
  570.   15.
  571.      ncurses installation is a fairly long job, though most of of the
  572.      time can be spent reading Usenet while it builds.  After unpacking
  573.      the tar file, read the INSTALL file pretending that you are `a
  574.      Linux ... distribution integrator or packager'; that is, you
  575.      probably want to be configuring it with a command like
  576.        $ ./configure --with-normal --with-shared --disable-termcap --enable-overwrite --prefix=/usr
  577.  
  578.   Take heed also of the comments about the default terminal type; in 1.3
  579.   and 2.0 kernels this is set to linux at boot time, but you may find
  580.   that you need to edit /etc/inittab to avoid having it set back to con¡
  581.   sole by getty.
  582.  
  583.   If you do not have /usr/lib/terminfo on the root disk you will have to
  584.   fiddle with the `fallback' support in ncurses.  This is documented in
  585.   the INSTALL file mentioned above, and is simple but tedious (due to
  586.   the necessity of building the library twice).  If you're happy with
  587.   having linux and vt100 as fallbacks, there is a ready-prepared fall¡
  588.   back.c at  <ftp://ftp.uk.linux.org/pub/Linux/libc/non-core/fallback.c>
  589.   which you can copy over the existing one.
  590.  
  591.   After you have installed ncurses, you'll have to get messy in /usr/lib
  592.   --- it does some non-optimal things that are simplest to clear up by
  593.   hand.  Note the weird discrepancy between the version numbers; this is
  594.   ugly but not actually detrimental to human health.
  595.  
  596.      a. /usr/lib/libncurses.so.1.9.9e should be moved to /lib so that
  597.         curses programs which run in single-user mode will continue to
  598.         do so.  If you have /usr/lib on the root partition, this is
  599.         unnecessary but will do no harm.
  600.  
  601.      b. In /lib, make a link to libncurses.so.1.9.9e called
  602.         libncurses.so.3.0.
  603.  
  604.      c. You also need links /usr/lib/libncurses.so,
  605.         /usr/lib/libcurses.so and /usr/lib/libtermcap.so which should
  606.         all point to /lib/libncurses.so.3.0.
  607.  
  608.   In brief for the hard of thinking, that little lot was
  609.  
  610.        # cd /lib
  611.        # mv /usr/lib/libncurses.so.1.9.9e .
  612.        # ln -s libncurses.so.1.9.9e libncurses.so.3.0
  613.        # cd /usr/lib
  614.        # ln -s /lib/libncurses.so.3.0 libncurses.so
  615.        # ln -s /lib/libncurses.so.3.0 libcurses.so
  616.        # ln -s /lib/libncurses.so.3.0 libtermcap.so
  617.  
  618.   16.
  619.      gdbm installation.  Unpack the source code in a source code
  620.      directory, apply gdbm.patch, and look over the README and INSTALL
  621.      files.
  622.  
  623.      The build process should go something like:
  624.  
  625.   $ tar zxf gdbm-1.7.3.tar.gz
  626.   $ patch -p0 < gdbm.patch
  627.   $ cd gdbm-1.7.3
  628.   $ ./configure --prefix=/usr
  629.   $ make
  630.   $ make progs
  631.   $ su
  632.   # make install
  633.   # make install-compat
  634.   # cd /usr/lib
  635.   # ln -s libgdbm.so.1 libgdbm.so
  636.   # ln -s libgdbm.so.1 libgdbm.so.2
  637.   # ldconfig
  638.  
  639.   The last step is for backward-compatibility; some current distribu¡
  640.   tions use libgdbm.so.2 which is exactly the same code as libgdbm.so.1,
  641.   but misnumbered for historical reasons.
  642.  
  643.   Optional source code packages.  In general, you can just install these
  644.   according to their instructions, so I won't repeat them.  There are
  645.   two exceptions, though:
  646.  
  647.   17.
  648.      If you want the GNU-ish termcap (strictly speaking, optional; in
  649.      practice, necessary to use XFree86 binaries) it also needs to be
  650.      built from source, but shouldn't require anything more complex than
  651.  
  652.        $ tar zxf termcap-2.0.8.tar.gz
  653.        $ cd termcap-2.0.8
  654.        $ make
  655.        $ su
  656.        # cp libtermcap.so.2.0.8 /usr/lib
  657.        # ldconfig
  658.  
  659.   I recommend that you don't make install, as this would overwrite bits
  660.   of the ncurses installation.  If you need to actually compile things
  661.   against this library, as opposed to just running binaries that were
  662.   made with it, think about putting the header files and static
  663.   libraries somewhere nonstandard, and using -I and -L flags when you
  664.   compile the said things.  The vagueness of this description should
  665.   make it plain that continued use of termcap is `discouraged' unless
  666.   you have a good reason.
  667.  
  668.   18.
  669.      For libdb, it goes something like:
  670.  
  671.   $ tar zxf db.1.85.tar.gz
  672.   $ patch -p0 <db.patch
  673.   $ cd db.1.85/PORT/linux
  674.   $ make
  675.   $ su
  676.   # mkdir /usr/include/db
  677.   # ldconfig
  678.   # cp libdb.so.1.85.3 /usr/lib ; ( cd /usr/lib && ln -s libdb.so.1 libdb.so )
  679.   # cp ../../include/*.h /usr/include/db
  680.  
  681.   Note that
  682.  
  683.   ╖  you're not applying PORT/linux/OTHER_PATCHES, because it's subsumed
  684.      by this patch
  685.  
  686.   ╖  you're installing the header files somewhere other than
  687.      /usr/include --- they conflict with the ones that gdbm uses.  To
  688.      compile programs that want libdb you must add -I/usr/include/db to
  689.      the C compiler's command line.
  690.  
  691.   2.5.  What it should look like (outline directory structure)
  692.  
  693.   This is a deliberately vague guide to what the files you have just
  694.   installed are.  It may be useful for troubleshooting or deciding what
  695.   to delete.
  696.  
  697.   2.5.1.
  698.    /lib
  699.  
  700.   ╖  Dynamic linkers ld.so (a.out) and ld-linux.so.1 (ELF).  Either of
  701.      these may be symlinks, but make sure that the files they point to
  702.      do exist.
  703.  
  704.   ╖  Basic shared libraries libc.so.4, libm.so.4 (a.out) These are
  705.      symlinks, but check that they point to real files.
  706.  
  707.   ╖  Basic shared libraries libc.so.5, libm.so.5,
  708.      libdl.so.1,libncurses.so.1,libtermcap.so.2, (ELF).  Again, these
  709.      are symlinks.  Check the files that they point to.
  710.  
  711.   2.5.2.  /usr/lib
  712.  
  713.   ╖  All the non-library files and directories that were there
  714.      previously.
  715.  
  716.   ╖  libbfd.so*,libdb.so*, libgdbm.so*, ELF shared libraries.
  717.  
  718.   ╖  More symlinks.  For each library in /lib or /usr/lib, there should
  719.      be a symlink in here.  The link's name should be the real filename,
  720.      minus the version number.  For example, for libc,
  721.  
  722.   lrwxrwxrwx   1 root     root           14 May  2 20:09 /lib/libc.so.5 -> libc.so.5.3.12
  723.   -rwxr-xr-x   1 bin      bin        583795 Apr 25 06:15 /lib/libc.so.5.3.12
  724.   lrwxrwxrwx   1 root     root           12 Oct 27  1995 /usr/lib/libc.so -> /lib/libc.so.5
  725.  
  726.   These links are used by ld at link time.
  727.  
  728.   ╖  libbsd.a, libgmon.a, libmcheck.a, libmcheck.a and one lib*.a file
  729.      for every ELF shared library in /lib and /usr/lib.  ELF static
  730.      libraries.  The ones that duplicate shared libraries may not be
  731.      tremendously useful for most people --- when using ELF, you can use
  732.      the gcc -g switch with shared libraries, so there's not much reason
  733.      to compile static any longer.  You will need to keep them if you
  734.      actually want to debug the libraries themselves.
  735.  
  736.   ╖  crt0.o, gcrt0.o.  a.out `start of program' files; one of these is
  737.      linked as the first file in every a.out program you compile, unless
  738.      you take steps to avoid it.
  739.  
  740.   ╖  crt1.o, crtbegin.o, crtbeginS.o, crtend.o, crtendS.o, crti.o,
  741.      crtn.o, gcrt1.o.  ELF startup files.  These do similar things to
  742.      *crt0.o above for ELF programs.
  743.  
  744.   2.5.3.
  745.    /usr/lib/ldscripts
  746.  
  747.   ╖  This is where the driver scripts for ld live, as the name suggests.
  748.      It should look like
  749.  
  750.        $ ls /usr/lib/ldscripts/
  751.        elf_i386.x      elf_i386.xs     i386coff.xn     i386linux.xbn
  752.        elf_i386.xbn    elf_i386.xu     i386coff.xr     i386linux.xn
  753.        elf_i386.xn     i386coff.x      i386coff.xu     i386linux.xr
  754.        elf_i386.xr     i386coff.xbn    i386linux.x     i386linux.xu
  755.  
  756.   2.5.4.  /usr/i486-linux/bin
  757.  
  758.   ╖  ar, as, gasp, ld, nm, ranlib, strip.  These are all actually
  759.      symlinks to the real binutils in /usr/bin
  760.  
  761.   2.5.5.  /usr/i486-linuxaout/bin
  762.  
  763.   ╖  as --- the a.out assembler, and gasp, its macro preprocessor
  764.  
  765.   ╖  ar, ld, nm, ranlib, strip --- symlinks to the real binutils in
  766.      /usr/bin
  767.  
  768.   2.5.6.  /usr/i486-linux/lib
  769.  
  770.   ╖  ldscripts is a symlink to /usr/lib/ldscripts.
  771.  
  772.   2.5.7.  /usr/i486-linuxaout/lib
  773.  
  774.   ╖  lib*.so*. a.out shared library images.  Needed to run a.out
  775.      programs
  776.  
  777.   ╖  lib*.sa. a.out shared library stubs.  Needed to compile a.out
  778.      programs that use shared libraries.  If you don't intend to, you
  779.      can safely remove these.
  780.  
  781.   ╖  lib*.a. a.out static libraries.  Needed to compile static a.out
  782.      programs (eg when compiling with -g).  Again, you can delete them
  783.      if you don't intend to do this.
  784.  
  785.   ╖  ldscripts is a symbolic link to /usr/lib/ldscripts
  786.  
  787.   2.5.8.  /usr/lib/gcc-lib/i486-linux/2.7.2
  788.  
  789.   ╖  This directory contains a version of gcc 2.7.2 set up to compile
  790.      ELF programs.
  791.  
  792.   2.5.9.  /usr/lib/gcc-lib/i486-linuxaout/2.7.2
  793.  
  794.   ╖  This directory contains a version of gcc 2.7.2 set up to compile
  795.      a.out programs, which knows about the new directory structure.  If
  796.      you're not going to compile anything in a.out, deleting this may
  797.      free up around 4Mb.  Note that you need to keep it if you want to
  798.      build unpatched 1.2 series kernels.
  799.  
  800.   2.6.  Common errors --- Don't Panic!
  801.  
  802.   (in large friendly letters)
  803.  
  804.       You moved the wrong thing and now nothing runs
  805.         You still have a shell running, though, and with a little
  806.         ingenuity you can do an awful lot with shell builtins.  Remember
  807.         that echo * is an acceptable substitute for ls, and echo
  808.         >>filename can be used to add lines to a file.  Also, don't
  809.         forget that ldconfig is linked static.  If you moved, say,
  810.         libc.so.4 to /lib-aout mistakenly, you can do echo "lib-aout"
  811.         >>/etc/ld.so.conf ; ldconfig -v/ and be back up again.  If you
  812.         moved /lib/ld.so you may be able to do sln /silly/place/ld.so
  813.         /lib/ld.so, if you have a statically linked ln, and probably be
  814.         back up again.
  815.  
  816.       bad address
  817.         on attempting to run anything ELF.  You're using kernel 1.3.x,
  818.         where x<3.  Don't.  They're probably the buggiest Linux kernels
  819.         on the planet anyway.  Upgrade to 2.0 or downgrade to 1.2.13.
  820.         Some people also report kernel panics in similar circumstances;
  821.         I haven't investigated, chiefly as I can think of no reason for
  822.         wanting or needing to run development kernels and not keeping up
  823.         with the releases.
  824.  
  825.       gcc: installation problem, cannot exec something: No such file or
  826.         directory
  827.         when attempting to do a.out compilations (something is usually
  828.         one of cpp or cc1).  Either it's right, or alternatively you
  829.         typed
  830.  
  831.           $ gcc -b -i486-linuxaout
  832.  
  833.      when you should have typed
  834.  
  835.           $ gcc -b i486-linuxaout
  836.  
  837.      Note that the `i486' does not start with a dash.
  838.  
  839.      make: *** No targets specified and no makefile found.  Stop.
  840.         indicates that you haven't patched and recompiled make, or that
  841.         you still have an old version of it elsewhere on the system.
  842.  
  843.       no such file or directory: /usr/bin/gcc
  844.         (or any other file that you try to run) when you know there is
  845.         such a file.  This usually means that the ELF dynamic loader
  846.         /lib/ld-linux.so.1 is not installed, or is unreadable for some
  847.         reason.  You should have installed it at around step 2
  848.         previously.
  849.  
  850.       not a ZMAGIC file, skipping
  851.         from ldconfig.  You have an old version of the ld.so package, so
  852.         get a recent one.  Again, see step 2 of the installation.
  853.  
  854.       _setutent: Can't open utmp file
  855.         This message is often seen in multiples of three when you start
  856.         an xterm.  Go and read the FSSTND tirade near the end of the
  857.         installation procedure.
  858.  
  859.   3.  Building programs
  860.  
  861.   3.1.  Ordinary programs
  862.  
  863.   To build a program in ELF, use gcc as always.  To build in a.out, use
  864.   gcc -b i486-linuxaout .
  865.  
  866.        $ cat >hello.c
  867.        main() { printf("hello, world\n"); }
  868.        ^D
  869.        $ gcc -o hello hello.c
  870.        $ file hello
  871.        hello: ELF 32-bit LSB executable i386 (386 and up) Version 1
  872.        $ ./hello
  873.        hello, world
  874.  
  875.   This is perhaps an appropriate time to answer the question ``if a.out
  876.   compilers default to producing a program called a.out, what name does
  877.   an ELF compiler give its output?''.  Still a.out, is the answer.
  878.   Boring boring boring ...  :-)
  879.  
  880.   3.2.  Building libraries
  881.  
  882.   To build libfoo.so as a shared library, the basic steps look like
  883.   this:
  884.  
  885.        $ gcc -fPIC -c *.c
  886.        $ gcc -shared -Wl,-soname,libfoo.so.1 -o libfoo.so.1.0 *.o
  887.        $ ln -s libfoo.so.1.0 libfoo.so.1
  888.        $ ln -s libfoo.so.1 libfoo.so
  889.        $ export LD_LIBRARY_PATH=`pwd`:$LD_LIBRARY_PATH
  890.  
  891.   This will generate a shared library called libfoo.so.1.0, and the
  892.   appropriate links for ld (libfoo.so) and the dynamic linker
  893.   (libfoo.so.1) to find it.  To test, we add the current directory to
  894.   LD_LIBRARY_PATH.
  895.  
  896.   When you're happpy that the library works, you'll have to move it to,
  897.   say, /usr/local/lib, and recreate the appropriate links.  Note that
  898.   the libfoo.so link should point to libfoo.so.1, so it doesn't need
  899.   updating on every minor version number change.  The link from
  900.   libfoo.so.1 to libfoo.so.1.0 is kept up to date by ldconfig, which on
  901.   most systems is run as part of the boot process.
  902.  
  903.        $ su
  904.        # cp libfoo.so.1.0 /usr/local/lib
  905.        # /sbin/ldconfig
  906.        # ( cd /usr/local/lib ; ln -s libfoo.so.1 libfoo.so )
  907.  
  908.   3.3.  Building in a.out
  909.  
  910.   You may have a need to continue to build programs in the old a.out
  911.   format.  For `normal' programs all you need to do to use the a.out
  912.   compiler is specify the flag -b i486-linuxaout when you call gcc, and
  913.   -m i386linux when (if) you call ld.  If you need to build a.out DLL
  914.   shared libraries still, you have my sympathy.  To the best of my
  915.   knowledge, the short answer is that it doesn't work.  Please mail me
  916.   if you know different.
  917.  
  918.   4.  Patches and binaries
  919.  
  920.   At this point in the proceedings, you can, if you like, stop.  You
  921.   have installed everything necessary to compile and run ELF programs.
  922.  
  923.   You may wish to rebuild programs in ELF, either for purposes of
  924.   `neatness' or to minimise memory usage.  For most end-user
  925.   applications, this is pretty simple; some packages however do assume
  926.   too much about the systems they run on, and may fail due to one or
  927.   more of:
  928.   ╖  Different underscore conventions in the assembler: in an a.out
  929.      executable, external labels get _ prefixed to them; in an ELF
  930.      executable, they don't.  This makes no difference until you start
  931.      integrating hand-written assembler: all the labels of the form _foo
  932.      must be translated to foo, or (if you want to be portable about it)
  933.      to EXTERNAL(foo) where EXTERNAL is some macro which returns either
  934.      its argument (if __ELF__ is defined) or _ concatenated with its
  935.      argument if not.
  936.  
  937.   ╖  Differences in libc 5 from libc 4.  The interface to the locale
  938.      support has changed, for one.
  939.  
  940.   ╖  The application or build process depending on knowledge of the
  941.      binary format used --- emacs, for example, dumps its memory image
  942.      to disk in executable format, so obviously needs to know what
  943.      format your executables are in.
  944.  
  945.   ╖  The application consists of or includes shared libraries (X11 is
  946.      the obvious example).  These will obviously need changes to
  947.      accomodate the different method of shared library creation in ELF.
  948.  
  949.   Anyway, here are two lists: the first is of programs that needed
  950.   changing for ELF where the changes have been made (i.e. that you will
  951.   need new versions of to compile as ELF), and the second is of programs
  952.   that still need third-party patches of some kind.
  953.  
  954.   4.1.  Upgrade:
  955.  
  956.   ╖  Dosemu.  Nowadays, dosemu runs with ELF.  You'll need to monkey
  957.      with the Makefile.  Current versions of dosemu are available from
  958.      <ftp://tsx-11.mit.edu/pub/linux/ALPHA/dosemu/>
  959.  
  960.   ╖  e2fsutils.  The Utilities for the Second Extended File System
  961.      versions 0.5c and later compile unchanged in ELF.
  962.  
  963.   ╖  Emacs.  There are two potential problems here.  (i) Emacs has a
  964.      rather odd build procedure that involves running a minimal version
  965.      of itself, loading in all the useful bits as lisp, then dumping its
  966.      memory image back to disk as an executable file.  (FSF) Emacs 19.29
  967.      and XEmacs 19.12 (formerly Lucid Emacs) can both detect whether you
  968.      are compiling as ELF and Do The Right Thing automatically.  (ii) If
  969.      you build some versions of emacs against ncurses, it will fail
  970.      unless you first edit src/s/linux.h in the emacs distribution to
  971.      add the line #define TERMINFO somewhere near the top.  This is not
  972.      necessary for 19.31, but is for XEmacs 19.13.  Apparently it will
  973.      be fixed in 19.14.
  974.  
  975.   ╖  gdb 4.16.  Your existing copy of gdb will continue to work just as
  976.      well as it always has done in the past, but the shared library
  977.      support in 4.16 is a lot better, so if you want to debug programs
  978.      that do weird things in that area, this is a good upgrade.
  979.  
  980.   ╖  The Kernel.  Kernel versions 2.0 and greater work fine with ELF;
  981.      you have to say `yes' to both of
  982.  
  983.        Kernel support for ELF binaries (CONFIG_BINFMT_ELF) [Y/m/n/?]
  984.        Compile kernel as ELF - if your GCC is ELF-GCC (CONFIG_KERNEL_ELF) [Y/n/?]
  985.  
  986.   when you run make config (this is also the case for most of the 1.3
  987.   series).  If you are using 1.2 still, see the `patch' list below.
  988.  
  989.   ╖  perl 5.  Perl 5.001m and later will compile unchanged on an ELF
  990.      system, complete with dynamic loading.  Current versions of Perl
  991.      are available from CPAN (Comprehensive Perl Archive Network) sites:
  992.      see  <ftp://ftp.funet.fi/pub/mirrors/perl/CPAN> for the closest one
  993.      to you.
  994.  
  995.   ╖  ps and top.  Procps 0.98 and greater will work with ELF (earlier
  996.      versions also work, but can't read the kernel to find WCHAN names,
  997.      if you care about them).  Note that 2.0 series kernels require
  998.      procps 0.99a or greater anyway.
  999.  
  1000.   ╖  The cal program in util-linux 2.2 doesn't work.  Upgrade to version
  1001.      2.5 <ftp://tsx-11.mit.edu/pub/linux/packages/utils> or later.
  1002.  
  1003.   ╖  Mosaic.  I don't have the facilities to build this myself, but the
  1004.      Mosaic 2.7b1 binary available from NCSA comes in ELF.  It has been
  1005.      linked against an odd X setup though, with the result that on
  1006.      normal systems it will complain about not finding libXpm.so.4.5.
  1007.      The simple fix is to edit it carefully with emacs or another editor
  1008.      that copes with binary files.  Find the occurence of the string
  1009.      libXpm.so.4.5^@ (where ^@ is a NUL --- ASCII zero --- character),
  1010.      delete the .5 and add two more characters after the NUL to aviod
  1011.      changing the file length.
  1012.  
  1013.   4.2.  Patch
  1014.  
  1015.   ╖  file.  This works anyway, but can be improved:
  1016.      <ftp://ftp.uk.linux.org/pub/Linux/libc/non-core/file.patch> adds
  1017.      support for identifying stripped and mixed-endian ELF binaries.
  1018.  
  1019.   ╖  make-3.74 --- either get the source code from a GNU site and apply
  1020.      the patch that comes with the libc-5.3.12 release notes, or get the
  1021.      binary make-3.74.gz from tsx-11.  There is a bug in GNU make which
  1022.      only manifests with new ELF libc versions --- it's actually a
  1023.      dependency on a bug in old versions of the GNU libc, which was also
  1024.      present in Linux libc until recently.  If you keep your old a.out
  1025.      make program it will continue to work, but if you want an ELF one
  1026.      you need the patch.
  1027.  
  1028.      The GNU Make developers know about the bug, and one day will
  1029.      release a fixed version.
  1030.  
  1031.   ╖  The 1.2.x Kernel.  You have three options:
  1032.  
  1033.      1. Patch the Makefile slightly to use the a.out compiler.  cd
  1034.         /usr/src/linux/, cut the following patch out, and feed it into
  1035.         patch -p1.  Or just edit the Makefile manually using this as a
  1036.         guide; it's clear enough (delete the lines marked with a - and
  1037.         add the ones with a +.
  1038.  
  1039.      diff -u linux-1.2.13/Makefile.orig linux/Makefile
  1040.      --- linux-1.2.13/Makefile.orig  Wed Aug 16 20:53:26 1995
  1041.      +++ linux/Makefile      Fri Dec  8 16:19:49 1995
  1042.      @@ -12,9 +12,9 @@
  1043.       TOPDIR := $(shell if [ "$$PWD" != "" ]; then echo $$PWD; else pwd; fi)
  1044.  
  1045.      -AS     =as
  1046.      -LD     =ld
  1047.      -HOSTCC =gcc -I$(TOPDIR)/include
  1048.      -CC     =gcc -D__KERNEL__ -I$(TOPDIR)/include
  1049.      +AS     =/usr/i486-linuxaout/bin/as
  1050.      +LD     =ld  -m i386linux
  1051.      +HOSTCC =gcc -b i486-linuxaout -I$(TOPDIR)/include
  1052.      +CC     =gcc -b i486-linuxaout -D__KERNEL__ -I$(TOPDIR)/include
  1053.       MAKE   =make
  1054.       CPP    =$(CC) -E
  1055.       AR     =ar
  1056.  
  1057.      Alternatively,
  1058.  
  1059.      2. Apply H J Lu's patch which allows compiling the kernel in ELF
  1060.         (and also adds the ability to do ELF core dumps).  This can be
  1061.         had from
  1062.         <ftp://ftp.cdrom.com/pub/linux/slackware_source/kernel-
  1063.         source/v1.2/linuxelf-1.2.13.diff.gz>.
  1064.  
  1065.         If you are using an ELF distribution (RedHat 2.1, Slackware 3)
  1066.         which comes with a 1.2 series kernel, you will probably find
  1067.         that this patch or one similar has been applied already.
  1068.  
  1069.         The best idea, hoever, is probably
  1070.  
  1071.      3. Upgrade to 2.0!  1.2 was never really intended for ELF anyway.
  1072.  
  1073.      You will have other problems compiling 1.2.13 with gcc 2.7.2 and
  1074.      above; there was a bug in asm/io.h which is only detected by gcc
  1075.      2.7.2.  You will need the patch
  1076.      <ftp://ftp.uk.linux.org/pub/Linux/libc/misc/io.h>.
  1077.  
  1078.   5.  Further information
  1079.  
  1080.   ╖  The GCC-HOWTO <GCC-HOWTO.html> contains much useful information
  1081.      about development on Linux (at least, I think it does; I maintain
  1082.      it).  It should be available from the same place as you found this,
  1083.      which is why the link above is relative.
  1084.  
  1085.   ╖  The linux-gcc mailing list (which is also the linux.dev.gcc
  1086.      newsgroup, if you have a linux.* news feed) is really the best
  1087.      place to see what's happening, usually without even posting to it.
  1088.      Remember, it's not Usenet, so keep the questions down unless you're
  1089.      actually developing.  For instructions on joining the mailing list,
  1090.      mail a message containing the word help to
  1091.      majordomo@vger.rutgers.edu.  Archives of the list are at
  1092.      <http://www.linux.ncm.com/linux-gcc/>.
  1093.  
  1094.   ╖  There's a certain amount of information about what the linux-gcc
  1095.      list is doing at my linux-gcc web page
  1096.      <http://ftp.uk.linux.org/~barlow/linux/gcc-list.html>, when I
  1097.      remember to update it.  This also has a link to the latest version
  1098.      of this HOWTO, and the patches it refers to.  For US people and
  1099.      others with poor links to UK academic sites (that's nearly everyone
  1100.      outside of UK academia), this is all mirrored at
  1101.      <http://www.blackdown.org/elf/elf.html>
  1102.  
  1103.   ╖  There's also documentation for the file format on tsx-11
  1104.      <ftp://tsx-11.mit.edu/pub/linux/packages/GCC/ELF.doc.tar.gz>.  This
  1105.      is probably of most use to people who want to understand, debug or
  1106.      rewrite programs that deal directly with binary objects.
  1107.  
  1108.   ╖  H J Lu's document ELF: From The Programmer's Perspective
  1109.      <ftp://tsx-11.mit.edu/pub/linux/packages/GCC/elf.latex.tar.gz>
  1110.      contains much useful and more detailed information on programming
  1111.      with ELF.  If you aren't LaTeX-capable, it is also available as
  1112.      PostScript.
  1113.  
  1114.   ╖  Information about the ncurses library and the terminfo database is
  1115.      available from Eric Raymond's ncurses resource page
  1116.      <http://www.ccil.org/~esr/ncurses.html>.
  1117.  
  1118.   ╖  There is a manual page covering dlopen(3) and related functions,
  1119.      which is supplied with the ld.so package.
  1120.  
  1121.   6.  Miscellanities
  1122.  
  1123.   6.1.  Feedback
  1124.  
  1125.   is welcomed.  Mail me at daniel.barlow@linux.org.  My PGP public key
  1126.   (ID 5F263625) is available from my web pages
  1127.   <http://ftp.uk.linux.org/~barlow/>, if you feel the need to be
  1128.   secretive about things.
  1129.  
  1130.   If you have a question that you feel this document should have
  1131.   answered and doesn't, mail me.  If you have a question which probably
  1132.   shouldn't be answered here but you think I might know the answer
  1133.   anyway, you might want to try posting to an appropriate
  1134.   comp.os.linux.* newsgroup first; I usually answer mail eventually, but
  1135.   I have been known to lose it on occasion.
  1136.  
  1137.   Anyone found adding my name to junk email lists will pay dearly for
  1138.   it.
  1139.  
  1140.   6.2.  Translations
  1141.  
  1142.   If you wish to translate this document, please go right ahead, but do
  1143.   tell me about it!  The chances are (sadly) several hundred to one
  1144.   against that I speak the language you wish to translate to, but that
  1145.   aside I am happy to help in whatever way I can.
  1146.  
  1147.   Translations that I know of are:
  1148.  
  1149.   ╖  Italian <http://www.psico.unipd.it/ildp/docs/HOWTO/ELF-HOWTO.html>,
  1150.      by Favro Renata.  (Other HOWTOs are also available in Italian from
  1151.      <http://www.psico.unipd.it/ildp/docs/HOWTO/INDEX.html>.
  1152.  
  1153.   ╖  Kojima Mitsuhiro has produced a Japanese translation, available
  1154.      from  <http://jf.gee.kyoto-u.ac.jp/JF/index.html>.
  1155.  
  1156.   6.3.  Legal bits
  1157.  
  1158.   All trademarks used in this document are acknowledged as being owned
  1159.   by their respective owners.  Yow!
  1160.  
  1161.   The right of Daniel Barlow to be identified as the author of this work
  1162.   has been asserted in accordance with sections 77 and 78 of the
  1163.   Copyright Designs and Patents Act 1988.
  1164.  
  1165.   This document is copyright (C) 1996 Daniel Barlow
  1166.   <daniel.barlow@linux.org> It may be reproduced and distributed in
  1167.   whole or in part, in any medium physical or electronic, as long as
  1168.   this copyright notice is retained on all copies. Commercial
  1169.   redistribution is allowed and encouraged; however, the author would
  1170.   like to be notified of any such distributions.
  1171.  
  1172.   All translations, derivative works, or aggregate works incorporating
  1173.   any Linux HOWTO documents must be covered under this copyright notice.
  1174.   That is, you may not produce a derivative work from a HOWTO and impose
  1175.   additional restrictions on its distribution. Exceptions to these rules
  1176.   may be granted under certain conditions; please contact the Linux
  1177.   HOWTO coordinator at the address given below.
  1178.  
  1179.   In short, we wish to promote dissemination of this information through
  1180.   as many channels as possible. However, we do wish to retain copyright
  1181.   on the HOWTO documents, and would like to be notified of any plans to
  1182.   redistribute the HOWTOs.
  1183.  
  1184.   If you have questions, please contact Greg Hankins, the Linux HOWTO
  1185.   coordinator, at gregh@sunsite.unc.edu.
  1186.  
  1187.